home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / hc2_x / tcprogud.sit / picture ƒ / ring.h < prev    next >
Text File  |  1990-11-09  |  434b  |  22 lines

  1. /*
  2. *    FILE:        ring.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    October 8, 1990
  5. *
  6. *    Defines ring of cubes for picture application.
  7. */
  8.  
  9. # ifndef    ring_h
  10. # define    ring_h
  11.  
  12. # include    "segment.h"
  13.  
  14. /******************************************************************
  15. *   ring.  Nested segment consisting of several cubes.
  16. ******************************************************************/
  17. struct    Ring:Nested_Segment
  18. {
  19.     boolean            init(void);
  20. };
  21.  
  22. # endif